home *** CD-ROM | disk | FTP | other *** search
/ Australian Infopedia 2.0 / Australian Infopedia 2.0.iso / opening / tour2.dir / 00092_Script_92 < prev    next >
Text File  |  1996-06-17  |  500b  |  19 lines

  1. on pauseDemo
  2.   global pauseSprite, gPaused
  3.   set the puppet of sprite pauseSprite = TRUE
  4.   set the castnum of sprite pauseSprite = the number of cast "ContinueButton"
  5.   updatestage
  6.   set gPaused = TRUE
  7.   set gContinued = FALSE
  8.   pause
  9. end
  10.  
  11. on continueDemo
  12.   global pauseSprite, gPaused
  13.   set the puppet of sprite pauseSprite = TRUE
  14.   set the castnum of sprite pauseSprite = the number of cast "PauseButton"
  15.   updatestage
  16.   set gPaused = FALSE
  17.   set gContinued = TRUE
  18.   continue
  19. end